home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19951130-19960209 / 000180_news@columbia.edu _Mon Dec 25 19:09:04 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  5KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.3/8.7.3) with ESMTP id TAA01578 for <kermit.misc@watsun>; Mon, 25 Dec 1995 19:09:04 -0500 (EST)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.3/8.7.3) id TAA05183 for kermit.misc@watsun; Mon, 25 Dec 1995 19:09:03 -0500 (EST)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: Kermit95 help - turning off status/mode line
  8. Date: 26 Dec 1995 00:08:58 GMT
  9. Organization: Columbia University
  10. Lines: 78
  11. Message-ID: <4bneeq$51r@apakabar.cc.columbia.edu>
  12. References: <30DF3BA2.5978@champlain.edu>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14.  
  15. In article <30DF3BA2.5978@champlain.edu>,
  16. Wayne Buttles  <buttles@champlain.edu> wrote:
  17. : I got Kermit 95 for the express reason that it could do full screen 
  18. : telnet sessions under Win95.  I can't for the life of me, however, 
  19. : figure out how to turn off the status bar at the bottom of the 
  20. : screen.  I really need a 25 char high window since I am running 
  21. : remote dos sessions via telnet.
  22. Alas, that is one thing you can't do.  Theoretically, you should be able
  23. to choose any number of lines at all, within reason.  If you could choose
  24. 26 lines, then you'd have a 25-line terminal screen plus the status line.
  25.  
  26. The Windows-32 API includes a feature to let a console application (such
  27. as Kermit 95, for the present) choose the screen dimensions.  In Windows
  28. NT it works just fine -- any reasonable combination of screen rows and
  29. columns is supported, and switching proceeds smoothly.  In Windows 95,
  30. however, this only works for a very short list of screen lengths, and only
  31. for one screen width (80).
  32.  
  33. The Windows 95 bug is documented in the BUGS.DOC file.  The symptom is
  34. that if you attempt to set a non-kosher screen height or width, such as
  35. (in your case, 26x80), then the instant Kermit tries to set any of the
  36. character-cell attributes (color, brightness, etc) within such a window, a
  37. General Protection Fault results.  To work around this bug, Kermit 95 (in
  38. Windows 95 only, not in Windows NT) does not set any attributes in such
  39. screens.  Hence (for example) the odd appearance of 132-column screens in
  40. Windows 95 (but not in Windows NT).  So, for example, you can (and I just
  41. did):
  42.  
  43.   set terminal height 25 ; Note: this does not include the status line
  44.   connect
  45.  
  46. and get a 25-line screen (plus a status line).  But (in my case at least)
  47. the screen is all black and white.
  48.  
  49. The other problem is that, having set an "odd" screen size, you can't
  50. run the application in full screen mode.  Alt-Enter causes an alert box
  51. to pop up.
  52.  
  53. And finally (to answer your question), there is presently no way to
  54. disable the status line.
  55.  
  56. When the full GUI version of Kermit 95 is released, we will be freed from
  57. the limitations and bugs of console mode and you will be able to select
  58. any screen dimensions (and font size, etc) you want.
  59.  
  60. Which brings us back to your opening sentence:
  61. :
  62. : I got Kermit 95 for the express reason that it could do full screen 
  63. : telnet sessions under Win95.
  64. :
  65. When you say "full screen telnet session", are you specifically referring
  66. to console-mode sessions such as the one Kermit 95 gives you now?  If
  67. Kermit 95 were a GUI application, rather than a console application, would
  68. that adversely affect your requirement for a full-screen telnet session,
  69. assuming (of course) that the GUI terminal window could be maximized?
  70.  
  71. : Also, can I turn off scrollback, or just remap the keys so that page 
  72. : up/down send the proper commands?  I think I can figure out how to 
  73. : remap this, but if there is an easy answer then that would be great.
  74. You can do either one or both.  It's all in the manual.  But when you say
  75. "page up/down send the proper commands", what do you think the proper
  76. commands are?  I'm beginning to think that what you are really looking
  77. for is "PCTERM" emulation.  Kermit 95 does not include that, and is not
  78. advertised as including it.  It's on our list -- along with many other
  79. things -- for future enhancements.
  80.  
  81. : I really need a full keyboard mapping for dos including f1-12 with 
  82. : shift, ctrl, and alt too so if anyone has tricks on dooing this that 
  83. : would be great, but the first question is # 1 -- the rest I can work 
  84. : around.
  85. As noted, you can map any key or key combination to send anything you want
  86. it to send.  But if you are looking for keys to send "make-break" (up/down)
  87. codes, that's another story.
  88.  
  89. - Frank